kgroad-frontend2/src/app/[locale]/news/[id]/error.tsx

10 lines
139 B
TypeScript

"use client";
import NotFound from "@/widgets/NotFound/NotFound";
const error = () => {
return <NotFound />;
};
export default error;